home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 22
/
Cream of the Crop 22.iso
/
os2
/
ext2_200.zip
/
EXT2_SRC.ZIP
/
32BITS
/
EXT2-OS2
/
EXT2FLT
/
DEBUG.H
next >
Wrap
C/C++ Source or Header
|
1996-01-24
|
2KB
|
44 lines
/************************************************************************/
/* Linux partition filter. */
/* (C) Copyright Deon van der Westhuysen, July 1995. */
/* */
/* Dedicated to Jesus Christ, my Lord and Saviour. */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2, or (at your option) */
/* any later version. */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public License */
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* */
/* This code is still under development; expect some rough edges. */
/* */
/************************************************************************/
#ifndef _DEBUG_H_
#define _DEBUG_H_
#define DEBUG
#ifdef DEBUG
/*
* MS Visual C++ inline asm statement is __asm {}, not asm {} (M.Willm 1995-11-14)
*/
#ifndef __MSC__
#define BREAK asm { int 3 }
#else
#define BREAK __asm { int 3 }
#endif
#else
#define BREAK
#endif
#endif